home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / ast_text / faqs / g!!plnfq < prev    next >
Text File  |  1993-06-28  |  32KB  |  770 lines

  1. Path: senator-bedfellow.mit.edu!enterpoop.mit.edu!news.media.mit.edu!uhog.mit.edu!rutgers!newsserver.jvnc.net!howland.reston.ans.net!agate!usenet
  2. From: jbuck@ohm.berkeley.edu (Joe Buck)
  3. Newsgroups: gnu.g++.help,comp.lang.c++,news.answers,comp.answers
  4. Subject: FAQ for g++ and libg++, plain text version [Revised 15 Jun 1993]
  5. Message-ID: <g++FAQ_06_15_1993_texi@ohm.berkeley.edu>
  6. Date: 15 Jun 93 16:21:23 GMT
  7. Expires: 15 Jul 1993 00:00:00 GMT
  8. Followup-To: poster
  9. Organization: University of California, Berkeley
  10. Lines: 753
  11. Approved: news-answers-request@MIT.edu
  12. Supersedes: <g++FAQ_06_01_1993_texi@ohm.berkeley.edu>
  13. NNTP-Posting-Host: forney.eecs.berkeley.edu
  14. Xref: senator-bedfellow.mit.edu gnu.g++.help:3627 comp.lang.c++:45304 news.answers:9430 comp.answers:1010
  15.  
  16. Archive-name: g++-FAQ/plain
  17. Last-modified: 15 Jun 1993
  18. Frequency: bimonthly
  19.  
  20. [ this is the plain text version, the parent is the texinfo version ]
  21.  
  22.  
  23. Preface
  24. *******
  25.  
  26.    This is a list of frequently asked questions (FAQ) for g++ users;
  27. thanks to all those who sent suggestions for improvements.  Thanks to
  28. Marcus Speh for doing the index.
  29.  
  30.    Many FAQ's, including this one, are available on the archive site
  31. rtfm.mit.edu, in the directory pub/usenet/news.answers.  This FAQ may
  32. be found in the subdirectory g++-FAQ.
  33.  
  34.    There have been many, many changes since the last version of this
  35. list, prompted by a major release of gcc.  I've fixed this document as
  36. best I could, but I'm sure it will need some more work.  Please send
  37. fixes, and please be kind.
  38.  
  39.    I'm looking for new questions (*with* answers), better answers, or
  40. both.  One thing that's missing is a section on templates and template
  41. problems with g++; I'm looking for contributions on this score.  You
  42. can mail comments, suggestions, flames, etc. to jbuck@ohm.berkeley.edu.
  43. Please don't assume, though, that because my name is on this thing
  44. that I am the world expert on g++/C++ and you should mail all your
  45. tricky questions to me.  I'd like to be helpful but I'm getting more of
  46. this than I can deal with lately.
  47.  
  48.    This FAQ is intended to supplement, not replace, Marshall Cline's
  49. excellent FAQ for comp.lang.c++.  Especially if g++ is the first C++
  50. compiler you've ever used, the question "How do I do <X> with g++?" is
  51. probably really "How do I do <X> in C++?".  You can obtain the C++ FAQ
  52. by anonymous FTP from sun.soe.clarkson.edu [128.153.12.3], in the file
  53. ~ftp/pub/C++/FAQ.  (There is also a mail server for that FAQ, but it
  54. seems to be broken).
  55.  
  56.  
  57. Obtaining Source Code
  58. *********************
  59.  
  60.  
  61. How do I get a copy of g++ for Unix?
  62. ====================================
  63.  
  64.    First, you may already have it if you have gcc for your platform;
  65. g++ and gcc are combined now (as of gcc version 2.0).
  66.  
  67.    You can get g++ from a friend who has a copy, by anonymous FTP or
  68. UUCP, or by ordering a tape or CD-ROM from the Free Software Foundation.
  69.  
  70.    The Free Software Foundation is a nonprofit organization that
  71. distributes software and manuals to raise funds for more GNU
  72. development.  Getting your copy from the FSF contributes directly to
  73. paying staff to develop GNU software.  CD-ROMs cost $100 if an
  74. individual is buying, or $400 if an organization is buying.  Tapes cost
  75. around $200 depending on media type.  I recommend asking for version 2,
  76. not version 1, of g++.
  77.  
  78.    For more information about ordering from the FSF, contact
  79. gnu@prep.ai.mit.edu or phone (617) 876-3296.
  80.  
  81.    Here is a list of anonymous FTP archive sites for GNU software.
  82.  
  83.      Japan: ftp.cs.titech.ac.jp, utsun.s.u-tokyo.ac.jp:ftpsync/prep
  84.      Australia: archie.au:gnu
  85.      Europe: src.doc.ic.ac.uk:gnu, ftp.informatik.tu-muenchen.de,
  86.          ftp.informatik.rwth-aachen.de:pub/gnu,
  87.          nic.funet.fi:pub/gnu, ugle.unit.no, isy.liu.se,
  88.          ftp.stacken.kth.se, sunic.sunet.se, ftp.win.tue.nl,
  89.          ftp.diku.dk, ftp.eunet.ch, archive.eu.net
  90.      United States: wuarchive.wustl.edu, ftp.cs.widener.edu,
  91.          uxc.cso.uiuc.edu, col.hp.com, gatekeeper.dec.com:pub/GNU,
  92.          ftp.uu.net:packages/gnu
  93.  
  94.    The "official site" is prep.ai.mit.edu, but your transfer will
  95. probably go faster if you use one of the above machines.
  96.  
  97.    If you use the HP Precision Architecture (HP-9000/7xx and
  98. HP-9000/8xx) and you want to use debugging, you'll need to grab a
  99. special version of GAS from the University of Utah, site
  100. jaguar.cs.utah.edu.  Look in the "/dist" directory for pa-gas-1.36.u5.
  101. A non-standard debug format is used, since HP considers their debug
  102. format a trade secret.  The GNU debugger, GDB, understands the debug
  103. format produced by this version of GAS, but not the format produced by
  104. HP's compilers.
  105.  
  106.    Some enhancements for the HP that haven't been integrated back into
  107. the official gcc are available from the same site in version
  108. gcc-2.4.3.u2.  The main one seems to be that linking against HPUX
  109. shared libraries works.  Both sources and precompiled binaries are
  110. available from this site.
  111.  
  112.    libg++-2.3 requires some patches to install correctly on HP-PA
  113. systems.  You may obtain these patches by anonymous FTP from the site
  114. geod.emr.ca in /pub/hp/libg++-2.3.patches.tar.Z.  Other interesting
  115. notes for HP-PA folks on use of GNU software on this architecture may
  116. be found in the file "gnu-results-1.6" in the same directory (1.6 may
  117. be replaced with some later number).
  118.  
  119.    [ I don't know how the above changes with libg++ 2.3.1 - jbuck ]
  120.  
  121.    UUNET customers can get GNU sources from UUNET via UUCP.  UUCP-only
  122. sites can get GNU sources by "anonymous UUCP" from site "osu-cis" at
  123. Ohio State University.  You pay for the long-distance call to OSU; the
  124. price isn't too bad on weekends at 9600 bps.  Send mail to
  125. uucp@cis.ohio-state.edu or osu-cis!uucp for more information.
  126.  
  127.    OSU lines are often busy.  If you're in the USA, and are willing to
  128. spend more money, you can get sources via UUCP from UUNET using their
  129. 900 number: 1-900-GOT-SRCS (900 numbers don't work internationally).
  130. You will be billed $0.50/minute by your phone company.
  131.  
  132.    Don't forget to retrieve libg++ as well!
  133.  
  134.  
  135. Getting gcc/g++ binaries for Solaris 2.x
  136. ========================================
  137.  
  138.    "Sun took the C compiler out of Solaris 2.x.  Am I stuck?"
  139.  
  140.    No; prep.ai.mit.edu and its mirror sites provide GCC binaries for
  141. Solaris.  As a rule, these binaries are not updated as often as the
  142. sources are, so if you want the very latest version of gcc/g++, you may
  143. need to grab and install binaries for an older version and use it to
  144. bootstrap the latest version from source.
  145.  
  146.    The latest gcc binaries on prep.ai.mit.edu are for version 2.4.0.
  147.  
  148.  
  149. How do I get a copy of g++ for (some other platform)?
  150. =====================================================
  151.  
  152.    The standard gcc/g++ distribution includes VMS support.  Since the
  153. FSF people don't use VMS, it's likely to be somewhat less solid than
  154. the Unix version.  Precompiled copies of g++ and libg++ in
  155. VMS-installable form are available by FTP from mango.rsmas.miami.edu.
  156.  
  157.    DJ Delorie has ported gcc/g++ to MS-DOS; this port is popularly
  158. known as "DJGPP" (the P's stand for "plus").  It can be found on many
  159. FTP archive sites; its "home" is on omnigate.clarkson.edu, directory
  160. ~ftp/pub/msdos/djgpp.  Note: omnigate restricts the number of anonymous
  161. users.  The latest version of DJGPP is 1.10, announced on June 1, 1993.
  162. This version is the first that runs under Windows 3.x.  It is a port
  163. of gcc 2.4.1.
  164.  
  165.    For information on Amiga ports of gcc/g++, retrieve the file
  166. /pub/gnu/MicrosPorts/Amiga from prep.ai.mit.edu, or write to Markus M.
  167. Wild <wild@nessie.cs.id.ethz.ch>, who I hope won't be too upset that I
  168. mentioned his name here.
  169.  
  170.    A port of gcc-2.4.1 to the Atari ST can be found on the site
  171. "atari.archive.umich.edu", under /atari/Gnustuff/Tos, along with many
  172. other GNU programs.  See the FAQ for the Usenet group
  173. "comp.sys.atari.st" for more information.
  174.  
  175.    There are two different ports of gcc-2.3.3 (and g++) to OS/2, the
  176. so-called EMX port, which requires a particular Unix emulator, and a
  177. port called "gcc/2", which runs native.  The latter port uses a rather
  178. buggy port of the BSD libc.  For more information ask around on
  179. "comp.os.os2.programmer".  gcc/2, together with other GNUware for OS/2,
  180. can be obtained by FTP from
  181.  
  182.      ftp-os2.nmsu.edu (128.123.35.151) in /pub/os2/2_x/unix/gnu
  183.      luga.latrobe.edu.au (131.172.2.2) in /pub/os2/2_x/unix/gnu
  184.  
  185.    The current maintainer of the gcc/2 port is Colin Jensen (Michael
  186. Johnson did the original port).  His address is ljensen@netcom.com.
  187.  
  188.    Eberhard Mattes did the EMX port.  His address is
  189. mattes@azu.informatik.uni-stuttgart.de.
  190.  
  191.    Because the legal policies of Apple threaten the long-term goals of
  192. FSF, as well as the concept of free software, no support will be lent to
  193. efforts to port GNU software to Macintosh or other Apple hardware.
  194.  
  195.  
  196. But I can only find g++-1.42!
  197. =============================
  198.  
  199.    "I keep hearing people talking about g++ 2.4.3 (or some other number
  200. starting with 2), but the latest version I can find is g++ 1.42.  Where
  201. is it?"
  202.  
  203.    As of gcc 2.0, C, C++, and Objective-C as well are all combined into
  204. a single distribution called gcc.  If you get gcc you already have g++.
  205. The standard installation procedure for any gcc version 2 compiler will
  206. install the C++ compiler as well.
  207.  
  208.    One could argue that we shouldn't even refer to "g++-2.x.y" but it's
  209. a convention.  It means "the C++ compiler included with gcc-2.x.y".
  210.  
  211.  
  212. What is the latest version of gcc, g++, and libg++?
  213. ===================================================
  214.  
  215.    The latest "2.x" version of gcc/g++ is 2.4.3, released June 1, 1993.
  216. (version "2.4.3.1" just fixes a problem with the INSTALL file but is
  217. otherwise identical to 2.4.3).  The latest version of libg++ is 2.3.1,
  218. released May 26, 1993.
  219.  
  220.    For some non-Unix platforms, 2.2.2 may be the latest compiler that
  221. has been ported.  libg++ 2.3 will not compile with gcc-2.2.2; use libg++
  222. 2.2 instead.
  223.  
  224.    The latest "1.x" version of gcc is 1.42, and the latest "1.x"
  225. version of g++ is 1.42.0.  I recommend against using them except in
  226. special circumstances.
  227.  
  228.  
  229. Installation Issues and Problems
  230. ********************************
  231.  
  232.  
  233. The INSTALL file in gcc-2.4.3 is truncated
  234. ==========================================
  235.  
  236.    For some reason, the INSTALL file in the gcc-2.4.3 installation was
  237. truncated at 16384 characters.  Accordingly, there is a distribution
  238. called gcc-2.4.3.1, which is different only that it has a complete
  239. INSTALL file.  You can either get that, or just read the `install.texi'
  240. file, which contains all the same information.
  241.  
  242.  
  243. I can't build g++ 1.x.y with gcc-2.x.y!
  244. =======================================
  245.  
  246.    "I obtained gcc-2.x.y and g++ 1.x.y and I'm trying to build it, but
  247. I'm having major problems.  What's going on?"
  248.  
  249.    If you wish to build g++-1.42, you must obtain gcc-1.42 first.  The
  250. installation instructions for g++ version 1 leave a lot to be desired,
  251. unfortunately, and I would recommend that, unless you have a special
  252. reason for needing the 1.x compiler, that C++ users use the latest
  253. g++-2.x version, as it is the version that is being actively maintained.
  254.  
  255.    There is no template support in g++-1.x, and it is generally much
  256. further away from the ANSI draft standard than g++-2.x is.
  257.  
  258.  
  259. OK, I've obtained gcc; what else do I need?
  260. ===========================================
  261.  
  262.    First off, you'll want libg++ as you can do almost nothing without it
  263. (unless you replace it with some other class library).
  264.  
  265.    Second, depending on your platform, you may need "gas", the GNU
  266. assembler, or the GNU linker (see next question).
  267.  
  268.    Finally, while it is not required, you'll almost certainly want the
  269. GNU debugger, gdb.  The latest version is 4.9, released May 12, 1993.
  270. Other debuggers (like dbx, for example) will normally not be able to
  271. understand at least some of the debug information produced by g++.
  272.  
  273.  
  274. Should I use the GNU linker, or should I use "collect"?
  275. =======================================================
  276.  
  277.    First off, for novices: special measures must be taken with C++ to
  278. arrange for the calling of constructors for global or static objects
  279. before the execution of your program, and for the calling of
  280. destructors at the end.  (Exception: System VR3 and System VR4 linkers
  281. support user-defined segments; g++ on these systems requires neither
  282. the GNU linker nor collect.  So if you have such a system, the answer
  283. is that you don't need either one).
  284.  
  285.    If you have experience with AT&T's "cfront", this function is
  286. performed there by programs named "patch" or "munch".  With GNU C++, it
  287. is performed either by the GNU linker or by a program known as
  288. "collect".  The collect program is part of the gcc-2.x distribution;
  289. you can obtain the GNU linker separately as part of the "binutils"
  290. package.  The latest version of binutils is 2.2.1, released May 21,
  291. 1993.
  292.  
  293.    (To be technical, it's "collect2"; there were originally several
  294. alternative versions of collect, and this is the one that survived).
  295.  
  296.    There are advantages and disadvantages to either choice.
  297.  
  298.    Advantages of the GNU linker:
  299.  
  300.    It's faster than using collect - collect basically runs the standard
  301. Unix linker on your program twice, inserting some extra code after the
  302. first pass to call the constructors.  This is a sizable time penalty
  303. for large programs.  The GNU linker does not require this extra pass.
  304.  
  305.    GNU ld reports undefined symbols using their true names, not the
  306. mangled names.
  307.  
  308.    If there are undefined symbols, GNU ld reports which object file(s)
  309. refer to the undefined symbol(s).
  310.  
  311.    As of binutils version 2.2, on systems that use the so-called "a.out"
  312. debug format (e.g. Suns running SunOS 4.x), the GNU linker compresses
  313. the debug symbol table considerably, which in at least some cases may
  314. make up, in disk space, for its inability to use shared libraries.
  315.  
  316.    Advantages of collect:
  317.  
  318.    If your native linker supports shared libraries, you can use shared
  319. libraries with collect.  The GNU linker does not (yet) support shared
  320. libraries.
  321.  
  322.    Note: using existing shared libraries (X and libc, for example) works
  323. very nicely; generating shared libraries from g++-compiled code is
  324. another matter, generally requiring OS-dependent tricks if it is
  325. possible at all.
  326.  
  327.    The GNU linker has not been ported to as many platforms as g++ has,
  328. so you may be forced to use collect.
  329.  
  330.    If you use collect, you don't need to get something extra and figure
  331. out how to install it; the standard gcc installation procedure will do
  332. it for you.
  333.  
  334.    In conclusion, I don't see a clear win for either alternative at this
  335. point.  Take your pick.
  336.  
  337.  
  338. Should I use the GNU assembler, or my vendor's assembler?
  339. =========================================================
  340.  
  341.    This depends on your platform and your decision about the GNU
  342. linker.  For most platforms, you'll need to use gas if you use the GNU
  343. linker.  For some platforms, you have no choice; check the gcc
  344. installation notes to see whether you must use gas.  But you can
  345. usually use the vendor's assembler if you don't use the GNU linker.
  346.  
  347.    The GNU assembler assembles faster than many native assemblers;
  348. however, on many platforms it cannot support the local debugging format.
  349.  
  350.  
  351. Should I use the GNU C library?
  352. ===============================
  353.  
  354.    At this point in time, no.  The GNU C library is still very young,
  355. and libg++ still conflicts with it in some places.  Use your native C
  356. library unless you know a lot about the gory details of libg++ and
  357. gnu-libc.  This will probably change in the future.
  358.  
  359.  
  360. Problems building libg++ on 386/486
  361. ===================================
  362.  
  363.    Attempts to install libg++ on 386 or 486 systems running ports of
  364. SVR4 have problems because of bugs in debugging support on that
  365. platform.  Briefly, debugging does not currently work right yet for
  366. C++.  You should be able to build the library successfully by deleting
  367. the -g flag from the Makefiles (this should no longer be necessary with
  368. gcc 2.4.1 although debugging still doesn't work).
  369.  
  370.    See the section entitled "Debugging on SVR4 systems."
  371.  
  372.  
  373. Other problems building libg++
  374. ==============================
  375.  
  376.    "I am having trouble building libg++-2.2 or 2.3.  Help!"
  377.  
  378.    On some platforms (for example, Ultrix), you may see errors
  379. complaining about being unable to open dummy.o.  On other platforms
  380. (for example, SunOS), you may see problems having to do with the type
  381. of size_t.  The fix for these problems is to make libg++ by saying
  382. "make CC=gcc".  According to Per Bothner, it should no longer be
  383. necessary to specify "CC=gcc" for libg++-2.3.1.
  384.  
  385.    On Solaris 2.1, in the file `libg++/configure.in', change
  386.  
  387.      *-*-solaris2)    my_host=solaris2 ;;
  388.  
  389.    to:
  390.  
  391.        *-*-solaris2*)    my_host=solaris2 ;;
  392.  
  393.  
  394. Do I need to rebuild libg++ to go with my new g++?
  395. ==================================================
  396.  
  397.    "After I upgraded g++ to the latest version, I'm seeing undefined
  398. symbols."
  399.  
  400.    or
  401.  
  402.    "If I upgrade to a new version of g++, do I need to reinstall
  403. libg++?"
  404.  
  405.    This depends; as a rule, some upgrades will require rebuilding libg++
  406. and others will not.  Both versions 2.3.3 and 2.4.0 introduced some
  407. incompatibilities with previous versions.  For 2.3.3, the name mangling
  408. of certain virtual table names changed, which introduced an
  409. incompatiblity.  For 2.4.0, the type of "size_t" changed on Suns from
  410. int (as declared by the include files provided by Sun) to unsigned long
  411. (the ANSI C and draft ANSI C++ standards declare that size_t must be
  412. unsigned, and the GCC maintainers are now correcting this "bug").
  413.  
  414.    Conclusion: if your old compiler is an older version than 2.3.3, you
  415. must rebuild libg++ when you install a new g++.  If your vendor declares
  416. size_t to be a signed type and your old compiler is an older version
  417. than 2.4.0, you also must rebuild libg++.
  418.  
  419.    This would be a good opportunity to upgrade to the libg++ 2.3.1
  420. release if you haven't yet, to minimize the amount of rebuilding.
  421.  
  422.  
  423. User Problems
  424. *************
  425.  
  426.  
  427. Linker reports undefined symbols for static data members
  428. ========================================================
  429.  
  430.    "g++ reports undefined symbols for all my static data members when I
  431. link, even though the program works correctly for compiler XYZ.  What's
  432. going on?"
  433.  
  434.    The problem is almost certainly that you don't give definitions for
  435. your static data members.  If you have
  436.  
  437.      class Foo {
  438.          ...
  439.          void method();
  440.          static int bar;
  441.      };
  442.  
  443.    you have only declared that there is an int named Foo::bar and a
  444. member function named Foo::method that is defined somewhere.  You still
  445. need to defined BOTH method() and bar in some source file.  According
  446. to the draft ANSI standard, you must supply an initializer, such as
  447.  
  448.      int Foo::bar = 0;
  449.  
  450. in one (and only one) source file.
  451.  
  452.  
  453. g++ won't accept the placement new syntax.
  454. ==========================================
  455.  
  456.    "I have a program that uses the "placement syntax" of operator new,
  457. e.g.
  458.  
  459.         new (somewhere) T;
  460.  
  461. and g++ won't accept it."
  462.  
  463.    Up until version 2.3.1, g++ accepted an alternate form of the
  464. placement syntax, for historical reasons; use
  465.  
  466.         new {somewhere} T;
  467.  
  468. if you are using g++-2.2.2 or older.
  469.  
  470.    As of 2.3.1, g++ finally fixed this, using the standard ARM syntax
  471. for "placement new".  A few remaining glitches were fixed in 2.3.2.  The
  472. only remaining problem is with declarators for pointers to functions;
  473.  
  474.      new (void (*)(int));  // confuses gcc 2.3.2
  475.      new (a) (void (*)(int)); // ditto
  476.  
  477.    These can be worked around with a typedef:
  478.  
  479.      typedef void (*fun)(int);
  480.      new fun;
  481.      new (a) fun;
  482.  
  483.  
  484. I think I have found a bug in g++.
  485. ==================================
  486.  
  487.    "I think I have found a bug in g++, but I'm not sure.  How do I know,
  488. and who should I tell?"
  489.  
  490.    First, see the excellent section on bugs and bug reports in the gcc
  491. manual (which is included in the gcc distribution).  As a short summary
  492. of that section: if the compiler gets a fatal signal, for any input,
  493. it's a bug (newer versions of g++ will ask you to send in a bug report
  494. when they detect an error in themselves).  Same thing for producing
  495. invalid assembly code.
  496.  
  497.    When you report a bug, make sure to describe your platform (the type
  498. of computer, and the version of the operating system it is running) and
  499. the version of the compiler that you are running.  Also provide enough
  500. code so that the g++ maintainers can duplicate your bug.
  501.  
  502.    I will add some extra notes that are C++-specific, since the notes
  503. from gcc are generally C-specific.
  504.  
  505.    First, mail your bug report to "bug-g++@prep.ai.mit.edu".  You may
  506. also post to gnu.g++.bug, but it's better to use mail, particularly if
  507. you have any doubt as to whether your news software generates correct
  508. reply addresses.  Don't mail C++ bugs to bug-gcc@prep.ai.mit.edu.
  509.  
  510.    If your bug involves libg++ rather than the compiler, mail to
  511. bug-libg++@prep.ai.mit.edu.  If you're not sure, you could send your bug
  512. to both lists.
  513.  
  514.    Second, if your program does one thing, and you think it should do
  515. something else, it is best to consult a good reference if in doubt.  The
  516. standard reference is "The Annotated C++ Reference Manual", by Ellis and
  517. Stroustrup (copyright 1990, ISBN #0-201-51459-1).  This is what they're
  518. talking about on the net when they refer to "the ARM".
  519.  
  520.    The reference manual, without annotations, also appears in
  521. Stroustrup's "The C++ Programming Language, Second Edition" (copyright
  522. 1991, ISBN #0-201-53992-6).  Both books are published by Addison-Wesley.
  523.  
  524.    Note that the behavior of (any version of) AT&T's "cfront" compiler
  525. is NOT the standard for the language.
  526.  
  527.  
  528. Porting programs from other compilers to g++
  529. ============================================
  530.  
  531.    "I have a program that runs on <some other C++ compiler>, and I want
  532. to get it running under g++.  Is there anything I should watch out for?"
  533.  
  534.    First, see the questions on placement new syntax and static data
  535. members.
  536.  
  537.    There are two other reasons why a program that worked under one
  538. compiler might fail under another: your program may depend on the order
  539. of evaluation of side effects in an expression, or it may depend on the
  540. lifetime of a temporary (you may be assuming that a temporary object
  541. "lives" longer than the standard guarantees).  As an example of the
  542. first:
  543.  
  544.      void func(int,int);
  545.      
  546.      int i = 3;
  547.      func(i++,i++);
  548.  
  549.    Novice programmers think that the increments will be evaluated in
  550. strict left-to-right order.  Neither C nor C++ guarantees this; the
  551. second increment might happen first, for example.  func might get 3,4,
  552. or it might get 4,3.
  553.  
  554.    The second problem often happens with classes like the libg++ String
  555. class.  Let's say I have
  556.  
  557.      String func1();
  558.      void func2(const char*);
  559.  
  560.    and I say
  561.  
  562.      func2(func1());
  563.  
  564.    because I know that class String has an "operator const char*".  So
  565. what really happens is
  566.  
  567.      func2(func1().convert());
  568.  
  569.    where I'm pretending I have a convert() method that is the same as
  570. the cast.  This is unsafe, because the temporary String object may be
  571. deleted after its last use (the call to the conversion function),
  572. leaving the pointer pointing to garbage, so by the time func2 is
  573. called, it gets an invalid argument.
  574.  
  575.    If you think this is ugly, you should know that the ANSI C++
  576. committee is still debating the lifetime-of-temporaries problem.
  577.  
  578.    For now, the safe way to write such code is to give the temporary a
  579. name, which forces it to live until the end of the scope of the name.
  580. For example:
  581.  
  582.      String& tmp = func1();
  583.      func2(tmp);
  584.  
  585.    Finally, like all compilers (but especially C++ compilers, it seems),
  586. g++ has bugs, and you may have tweaked one.
  587.  
  588.  
  589. Why does g++ mangle names differently from other C++ compilers?
  590. ===============================================================
  591.  
  592.    See the answer to the next question.
  593.  
  594.  
  595. Why can't g++ code link with code from other C++ compilers?
  596. ===========================================================
  597.  
  598.    "Why can't I link g++-compiled programs against libraries compiled by
  599. some other C++ compiler?"
  600.  
  601.    Some people think that, if only the FSF and Cygnus Support folks
  602. would stop being stubborn and mangle names the same way that, say,
  603. cfront does, then any g++-compiled program would link successfully
  604. against any cfront-compiled library and vice versa.  Name mangling is
  605. the least of the problems.  Compilers differ as to how objects are laid
  606. out, how multiple inheritance is implemented, how virtual function
  607. calls are handled, and so on, so if the name mangling were made the
  608. same, your programs would link against libraries provided from other
  609. compilers but then crash when run.  For this reason, the ARM
  610. *encourages* compiler writers to make their name mangling different
  611. from that of other compilers for the same platform.  Incompatible
  612. libraries are then detected at link time, rather than at run time.
  613.  
  614.  
  615. What documentation exists for g++ 2.x?
  616. ======================================
  617.  
  618.    Relatively little.  The gcc manual describes the C front end, and
  619. also the back end, which is shared by the C++ compiler, but there is
  620. relatively little documentation for the C++ front end beyond a cursory
  621. description of the command line options (although more C++ specific
  622. information has been added to the gcc manual as of version 2.4.1).
  623.  
  624.    There is a Unix-style manual entry, "g++.1", in the gcc-2.x
  625. distribution; this describes the extra command-line options that g++
  626. supports, and the #pragma interface and #pragma implementation
  627. directives.
  628.  
  629.    (Latest news: as of 2.4.0, these pragmas are finally described in the
  630. main gcc manual).
  631.  
  632.    A draft of a document describing the g++ internals appears in the gcc
  633. distribution (called g++int.texi); it is still incomplete.
  634.  
  635.  
  636. What are the differences between g++ and the ARM specification of C++?
  637. ======================================================================
  638.  
  639.    The chief thing missing from g++ that is in the ARM is exceptions.
  640. There are bits and pieces of exception code present, but it is not
  641. presently usable.
  642.  
  643.    The template implementation is still new.  The implementation in
  644. 2.4.1 represents a considerable improvement over that of previous
  645. releases, but it has a long way to go.
  646.  
  647.    g++ does not implement a separate pass to instantiate template
  648. functions and classes at this point; for this reason, it will not work,
  649. for the most part, to declare your template functions in one file and
  650. define them in another.  The compiler will need to see the entire
  651. definition of the function, and will generate a static copy of the
  652. function in each file in which it is used.
  653.  
  654.    As with any beta-test compiler, there are bugs.  You can help improve
  655. the compiler by submitting detailed bug reports.
  656.  
  657.    One of the weakest areas of g++ other than templates is the
  658. resolution of overloaded functions and operators in complex cases.  The
  659. usual symptom is that in a case where the ARM says that it is ambiguous
  660. which function should be chosen, g++ chooses one (often the first one
  661. declared).  This is usually not a problem when porting C++ code from
  662. other compilers to g++, but shows up as errors when code developed under
  663. g++ is ported to other compilers.
  664.  
  665.    [A full bug list would be very long indeed, so I won't put one here.
  666. I may add a list of frequently-reported bugs and "non-bugs" like the
  667. static class members issue mentioned above].
  668.  
  669.  
  670. Will g++ compile InterViews?  The NIH class library?
  671. ====================================================
  672.  
  673.    The NIH class library uses a non-portable, compiler-dependent hack
  674. to initialize itself, which makes life difficult for g++ users.  It
  675. will not work without modification, and I don't know what modifications
  676. are required or whether anyone has done them successfully.
  677.  
  678.    Brendan Kehoe of Cygnus Support is working on getting NIHCL to build
  679. with g++.  He says, "The NIHCL release will hopefully contain patches
  680. to gcc to let it build."
  681.  
  682.    [ From Steinar Bang <steinarb@idt.unit.no>]
  683.  
  684.    InterViews 3.1 compiles and runs with gcc-2.3.3 and libg++-2.3,
  685. except that the "doc" application immediately dumps core when you try
  686. to run it.  There is also a small glitch with idraw.
  687.  
  688.    There is a patch for InterViews 3.1 from Johan Garpendahl
  689. <garp@isy.liu.se> available for FTP from site "ugle.unit.no".  It is in
  690. the file
  691.  
  692.    /pub/X11/contrib/InterViews/g++/3.1-beta3-patch.
  693.  
  694.    This fixes two things: the Doc coredump, and the pattern menu of
  695. idraw.  Read the instructions at the start of the file.
  696.  
  697.    [ I don't know whether the situation has changed with 2.4.0 ]
  698.  
  699.  
  700. Debugging on SVR4 systems
  701. =========================
  702.  
  703.    "When I use the -g flag on C++ code on a System V Release 4 system,
  704. I get lots of undefined symbols at link time.  Why?  Help!"
  705.  
  706.    [From Ron Guilmette:] The changes needed to get the g++ front-end to
  707. generate proper DWARF style debugging information for System V Release
  708. 4 are not yet completed, nor will they be until g++ version 2.4 (at the
  709. earliest).
  710.  
  711.    (Guess what?  2.4 is out, and it *still* doesn't work, but now g++
  712. will give you a warning message and turn off debugging rather than put
  713. out bogus assembly code.  Latest word from Brendan Kehoe: "it should
  714. work [better] in whatever major release comes after 2.4.1 ...").
  715.  
  716.    [Ron again:] There is nothing that you (as an end-user) can do to
  717. correct this problem.  (It is actually *many* problems, and they are
  718. all very complex.)  Until the g++ maintainers have time to fix this,
  719. you should simply *avoid* using the -g option when using g++ on SVR4.
  720.  
  721.  
  722. What are the rules for shipping code built with g++ and libg++?
  723. ***************************************************************
  724.  
  725.    "Is it is possible to distribute programs for profit that are created
  726. with g++ and use the g++ libraries?"
  727.  
  728.    I am not a lawyer, and this is not legal advice.  In any case, I have
  729. little interest in telling people how to violate the spirit of the GNU
  730. licenses without violating the letter.  This section tells you how to
  731. comply with the intention of the GNU licenses as best I understand them.
  732.  
  733.    The FSF has no objection to your making money.  Its only interest is
  734. that source code to their programs, and libraries, and to modified
  735. versions of their programs and libraries, is always available.
  736.  
  737.    The short answer is that you do not need to release the source to
  738. your program, but you can't just ship a stripped executable either.
  739.  
  740.    Compiling your code with a GNU compiler does not affect its
  741. copyright; it is still yours.  However, in order to ship code that
  742. links in a GNU library such as libg++ there are certain rules you must
  743. follow.  The rules are described in the file COPYING.LIB that
  744. accompanies gcc distributions; it is also included in the libg++
  745. distribution.  See that file for the exact rules.  The agreement is
  746. called the Library GNU Public License or LGPL.  It is much "looser"
  747. than the GNU Public License, or GPL, that covers must GNU programs.
  748.  
  749.    Here's the deal: let's say that you use some version of libg++,
  750. completely unchanged, in your software, and you want to ship only a
  751. binary form of your code.  You can do this, but there are several
  752. special requirements.  If you want to use libg++ but ship only object
  753. code for your code, you have to ship source for libg++ (or ensure
  754. somehow that your customer already has the source for the exact version
  755. you are using), and ship your applica4
  756. on in linkable form.  You cannot
  757. forbid your customer from reverse-engineering or extending your program
  758. by exploiting its linkable form.
  759.  
  760.    Furthermore, if you modify libg++ itself, you must provide source
  761. for your modifications (making a derived class does not count as
  762. modifying the library - that is "a work that uses the library").
  763.  
  764.  
  765. Concept Index
  766. *************
  767.  
  768. --
  769. Joe Buck    jbuck@ohm.EECS.Berkeley.EDU
  770.